Hello
I am having some problems trying to get IBM HTTP (V2.0.42) Server to work with the Domino V6 plugin (ie all requests go via the HTTP server). At the moment I cannot get the HTTP Server started when I add the required lines to the HTTPD.conf file.
The documentation to configure this is located at:
http://www-12.lotus.com/ldd/doc/domino_notes/Rnext/help6_admin.nsf/f4b82fbb75e942a6852566ac0037f284/87c5e99ceaeb8d6885256c1d00397fd3?OpenDocument
This documentation covers what should be done on a AIX server not a Windows machine (which is a bit strange). So I have had to make a few educated assumptions (ie guesses!!! ).
The error I get, in the event log, is "The IBM HTTP Server 2.0.42 service terminated with service-specific error 1" (ie not very helpful)
If anyone has any comments or suggestions on what I could try I would appreciate it.
This is what I have done so far:
Note: HTTP Server is installed at F:\IBMWAS\HTTPServer2.0 and Websphere Application Server Express V6.0 is installed at F:\IBMWAS\Express
1. copy (from the Domino 6 Server installation) "mod_ibm_app_server_http.dll" to F:\IBMWAS\HTTPServer2.0\modules
2. copy (from the Domino 6 Server installation) plugin-cfg.xml to F:\IBMWAS\Express\AppServer\config
3. edit httpd.conf
a. add
LoadModule ibm_app_server_http_module modules/mod_ibm_app_server_http.dll
b. add
WebSpherePluginConfig F:/IBMWAS/Express/AppServer/config/plugin-cfg.xml
4. edit conf/plugin-cfg.xml
a. edited <ServerGroup Name="default_group> section
<Transport Hostname="www.servername.com" Port="80" Protocol="http" />
b. added to <UriGroup Name="default_host_URIs>
<Uri Name="*/.nsf*">
<Uri Name="*/icons/*">
<Uri Name="*/domjava/*">
c. edit
<Log Name="F:/IBMWAS/HTTPServer2.0/logs/plugin-cfg.log" LogLevel="Trace"/>
5. edit notes.ini
HTTPEnableConnectorHeaders=1
A question about the above configuration changes are:
1. Every other module under the LoadModule directive is of file type "*.so" (ie mod_foo.so), there is none that end in "*.dll". So it sort of looks like the file mod_ibm_app_server_http.dll (in step 3a above) does not look correct. There is a file called mod_ibm_app_server_http.so, but this is under the AIX area so I assume I should not use it (but have tried to use it though).
Thanks Nick Whalan